home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -serious- / wb / merlin / rexx / fahrenheittocelsius.rexx < prev    next >
OS/2 REXX Batch file  |  1999-07-12  |  795b  |  43 lines

  1. /* RUN "rx MCP:rexx/FahrenheitToCelsius.rexx %n"   */
  2.  
  3. Arg node_number                         /* node we were run from */
  4. Host = 'MCPREXX.'node_number            /* the Trion MCP Arexx port */
  5. Options results
  6. Address value host
  7. options failat 15
  8.  
  9.  
  10. /* say "node: "node_number */
  11. if node_number = "" then do
  12.    say "error .. rexx script not started with %n on command line"
  13.    exit 1
  14. end
  15.  
  16.  
  17. ReadString "ID 13"
  18. Fahrenheit = result
  19.  
  20. if Fahrenheit < -459.4 then do
  21.    Fahrenheit = -459.4
  22.    WriteString "13" Fahrenheit
  23. end
  24.  
  25.  
  26. /* say "Fahrenheit:" Fahrenheit */
  27.  
  28. Celsius = (Fahrenheit - 32) * (5/9)
  29.  
  30. /* say "Celsius:" Celsius */
  31.  
  32. /* WriteString '14, Celsius' */
  33. WriteString "14" Celsius
  34.  
  35.  
  36. exit 0                         /* einde programma */
  37.  
  38.  
  39.  
  40. test:          /*  een functie: 'call test' */
  41. return 0
  42.  
  43.